home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-05-01 | 1.5 KB | 64 lines | [TEXT/MPS ] |
- ;
- ; File: PCIBridgePlugin.a
- ;
- ; Contains: This file contains all interface related structures and prototypes for pci expert to
- ;
- ; Version: Technology: Copland
- ; Release: Universal Interfaces 3.0d3 on Copland DR1
- ;
- ; Copyright: © 1984-1996 by Apple Computer, Inc. All rights reserved.
- ;
- ; Bugs?: If you find a problem with this file, send the file and version
- ; information (from above) and the problem description to:
- ;
- ; Internet: apple.bugs@applelink.apple.com
- ; AppleLink: APPLE.BUGS
- ;
- ;
- IF &TYPE('__PCIBRIDGEPLUGIN__') = 'UNDEFINED' THEN
- __PCIBRIDGEPLUGIN__ SET 1
-
- IF &TYPE('__PCICOMMONPLUGIN__') = 'UNDEFINED' THEN
- include 'PCICommonPlugin.a'
- ENDIF
- IF FOR_SYSTEM8_PREEMPTIVE THEN
- ; Prototypes for the bridge plugin
- ;
- ; extern OSStatus PCIBridgePluginInitialize(void)
- ;
- IF GENERATINGCFM THEN
- IMPORT_CFM_FUNCTION PCIBridgePluginInitialize
- ENDIF
-
- ;
- ; extern void DefaultBridgeEnabler(InterruptSetMember setIDMember, void *refCon)
- ;
- IF GENERATINGCFM THEN
- IMPORT_CFM_FUNCTION DefaultBridgeEnabler
- ENDIF
-
- ;
- ; extern InterruptSourceState DefaultBridgeDisabler(InterruptSetMember setIDMember, void *refCon)
- ;
- IF GENERATINGCFM THEN
- IMPORT_CFM_FUNCTION DefaultBridgeDisabler
- ENDIF
-
- ;
- ; extern InterruptMemberNumber DefaultBridgeDispatcher(InterruptSetMember setIDMember, void *info, UInt32 theIntCount)
- ;
- IF GENERATINGCFM THEN
- IMPORT_CFM_FUNCTION DefaultBridgeDispatcher
- ENDIF
-
- ;
- ; extern OSStatus PCIBridgePluginFinalize(void)
- ;
- IF GENERATINGCFM THEN
- IMPORT_CFM_FUNCTION PCIBridgePluginFinalize
- ENDIF
-
- ENDIF
- ENDIF ; __PCIBRIDGEPLUGIN__
-
-